home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / PROGRAMR / FLAT.ZIP / FLATSORT.H < prev    next >
C/C++ Source or Header  |  1993-04-11  |  438b  |  30 lines

  1. #ifndef _FLATSORT_H
  2. #define _FLATSORT_H
  3.  
  4. #include <time.h>
  5.  
  6. struct tagEVENTSORT
  7. {
  8.     long         recnum;
  9.     long         lSortval;
  10.     struct tagEVENTSORT *psNext;
  11.     struct tagEVENTSORT *psLast;
  12. };
  13.  
  14.  
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18.  
  19. LONG GetNextSortRec (void);
  20. void ClearSortPtr (void);
  21. BOOL AddDateSort (LONG, time_t);
  22. BOOL AddRecordSort(LONG);
  23. void ClearSortMem (void);
  24.  
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28.  
  29. #endif
  30.